home *** CD-ROM | disk | FTP | other *** search
- #Inventor V2.0 ascii
- # Self Manipulating Sphere
- Separator {
-
- # Interface for sphere control
- Separator {
- BaseColor { rgb 1 0 0 }
- DEF PROF_PT_DRAGGER Translate1Dragger {
- translation 1 0 0
- translator DEF DRAG_CUBE Separator {
- Cube { width .2 height .2 depth .2 }
- }
- translatorActive DEF DRAG_YELLOW_CUBE Separator {
- BaseColor { rgb 1 1 0 }
- Cube { width .2 height .2 depth .2 }
- }
- }
- }
- # Sphere, controlled by above dragger
- Separator {
- BaseColor { rgb .8 .8 .8 }
- Sphere {
- radius = DecomposeVec3f {
- vector = USE PROF_PT_DRAGGER . translation
- }
- . x
- }
- }
- }
-